home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1991 / 04 / spy.mak < prev    next >
Text File  |  1991-04-19  |  793b  |  43 lines

  1. ASM    = masm /t/ml
  2. LNK    = link
  3.  
  4. dos_errs.obj:    dos_errs.asm
  5.     $(ASM) dos_errs;
  6.  
  7. malloc.obj:    malloc.asm
  8.     $(ASM) malloc;
  9.  
  10. misc.obj:    misc.asm
  11.     $(ASM) misc;
  12.  
  13. spy.obj:    spy.asm
  14.     $(ASM) spy;
  15.  
  16. net_misc.obj:    net_misc.asm
  17.     $(ASM) net_misc;
  18.  
  19. putbytes.obj:    putbytes.asm
  20.     $(ASM) putbytes;
  21.  
  22. putchar.obj:    putchar.asm
  23.     $(ASM) putchar;
  24.  
  25. puts.obj:    puts.asm
  26.     $(ASM) puts;
  27.  
  28. setarg.obj:    setarg.asm
  29.     $(ASM) setarg;
  30.  
  31. startup2.obj:    startup2.asm
  32.     $(ASM) startup2;
  33.  
  34. strerror.obj:    strerror.asm
  35.     $(ASM) strerror;
  36.  
  37. strncpy.obj:    strncpy.asm
  38.     $(ASM) strncpy;
  39.  
  40. spy.exe:    spy.obj malloc.obj misc.obj net_misc.obj puts.obj \
  41.         startup2.obj malloc.obj dos_errs.obj strerror.obj putchar.obj
  42.     $(LNK) spy+dos_errs+malloc+misc+net_misc+putbytes+putchar+puts+setarg+startup2+strerror+strncpy/map;
  43.